+Tue Apr 2 11:10:13 2002 Jonathan Blandford <jrb@redhat.com>
+ * gtk/gtkliststore.c (gtk_list_store_set_sort_func): set the
+ sort_func correctly, 77030
+
Tue Apr 2 13:44:27 2002 Tim Janik <timj@gtk.org>
* configure.in: update version to 2.0.2, binary age 2, interface
+Tue Apr 2 11:10:13 2002 Jonathan Blandford <jrb@redhat.com>
+ * gtk/gtkliststore.c (gtk_list_store_set_sort_func): set the
+ sort_func correctly, 77030
+
Tue Apr 2 13:44:27 2002 Tim Janik <timj@gtk.org>
* configure.in: update version to 2.0.2, binary age 2, interface
+Tue Apr 2 11:10:13 2002 Jonathan Blandford <jrb@redhat.com>
+ * gtk/gtkliststore.c (gtk_list_store_set_sort_func): set the
+ sort_func correctly, 77030
+
Tue Apr 2 13:44:27 2002 Tim Janik <timj@gtk.org>
* configure.in: update version to 2.0.2, binary age 2, interface
+Tue Apr 2 11:10:13 2002 Jonathan Blandford <jrb@redhat.com>
+ * gtk/gtkliststore.c (gtk_list_store_set_sort_func): set the
+ sort_func correctly, 77030
+
Tue Apr 2 13:44:27 2002 Tim Janik <timj@gtk.org>
* configure.in: update version to 2.0.2, binary age 2, interface
+Tue Apr 2 11:10:13 2002 Jonathan Blandford <jrb@redhat.com>
+ * gtk/gtkliststore.c (gtk_list_store_set_sort_func): set the
+ sort_func correctly, 77030
+
Tue Apr 2 13:44:27 2002 Tim Janik <timj@gtk.org>
* configure.in: update version to 2.0.2, binary age 2, interface
+Tue Apr 2 11:10:13 2002 Jonathan Blandford <jrb@redhat.com>
+ * gtk/gtkliststore.c (gtk_list_store_set_sort_func): set the
+ sort_func correctly, 77030
+
Tue Apr 2 13:44:27 2002 Tim Janik <timj@gtk.org>
* configure.in: update version to 2.0.2, binary age 2, interface
for (list = list_store->sort_list; list; list = list->next)
{
- header = (GtkTreeDataSortHeader*) list->data;
- if (header->sort_column_id == sort_column_id)
- break;
+ GtkTreeDataSortHeader *list_header;
+
+ list_header = (GtkTreeDataSortHeader*) list->data;
+ if (list_header->sort_column_id == sort_column_id)
+ {
+ header = list_header;
+ break;
+ }
}
if (header == NULL)
for (list = tree_store->sort_list; list; list = list->next)
{
- header = (GtkTreeDataSortHeader*) list->data;
- if (header->sort_column_id == sort_column_id)
- break;
+ GtkTreeDataSortHeader *list_header;
+
+ list_header = (GtkTreeDataSortHeader*) list->data;
+ if (list_header->sort_column_id == sort_column_id)
+ {
+ header = list_header;
+ break;
+ }
}
if (header == NULL)